home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1996 October / MacFormat CD Edition MF42 (October 1996).ISO / mac / MacFormat 42 Browser / SOURCES / oDemos2_43.k < prev    next >
Text File  |  1996-08-07  |  2KB  |  86 lines

  1. object oDemos2_43 is cDefaultContainer
  2. with
  3.     Binder is oBinder;
  4.     Label is -1;
  5.     Items is [
  6.         oDescent_43_5,
  7.         oBack_button_43_2,
  8.         oNext_Button_43_3,
  9.         oMenu_Button_43_4
  10.     ];
  11. end;
  12.  
  13.  
  14. object oDescent_43_5 is cPictureHandler
  15. with
  16.     Duration is -1;
  17.     Supplier is oDescent_184_;
  18.     Behavior is cVRBehavior
  19.     has
  20.     with
  21.         Enabled is true; Shown is true; 
  22.         X is 0; Y is 0; Width is 640; Height is 480;
  23.     end;
  24. end;
  25.  
  26.  
  27. object oBack_button_43_2 is cPictureHandler
  28. with
  29.     Duration is -1;
  30.     Supplier is oBack_button_66_;
  31.     Behavior is cVRBehavior
  32.     has
  33.         MouseUp(theTarget, theX, theY)
  34.             do
  35.                 oBinder.Goto(oDemos1_41);
  36.                 oBinder.Refresh();
  37.                 oBinder.SetTransition(oDissolve, 30);
  38.             end;
  39.         
  40.     with
  41.         Enabled is true; Shown is true; 
  42.         X is 26; Y is 360; Width is 90; Height is 39;
  43.     end;
  44. end;
  45.  
  46.  
  47. object oNext_Button_43_3 is cPictureHandler
  48. with
  49.     Duration is -1;
  50.     Supplier is oNext_Button_67_;
  51.     Behavior is cVRBehavior
  52.     has
  53.         MouseUp(theTarget, theX, theY)
  54.             do
  55.                 oBinder.Goto(oDemos3_47);
  56.                 oBinder.Refresh();
  57.                 oBinder.SetTransition(oDissolve, 30);
  58.             end;
  59.         
  60.     with
  61.         Enabled is true; Shown is true; 
  62.         X is 26; Y is 300; Width is 90; Height is 39;
  63.     end;
  64. end;
  65.  
  66.  
  67. object oMenu_Button_43_4 is cPictureHandler
  68. with
  69.     Duration is -1;
  70.     Supplier is oMenu_Button_49_;
  71.     Behavior is cVRBehavior
  72.     has
  73.         MouseUp(theTarget, theX, theY)
  74.             do
  75.                 oBinder.Goto(oMain_Menu_2);
  76.                 oBinder.Refresh();
  77.                 oBinder.SetTransition(oDissolve, 30);
  78.             end;
  79.         
  80.     with
  81.         Enabled is true; Shown is true; 
  82.         X is 26; Y is 420; Width is 90; Height is 39;
  83.     end;
  84. end;
  85.  
  86.